home *** CD-ROM | disk | FTP | other *** search
- From: Tendrils@msn.com (kelvin )
- Subject: RE: Heap Memory Management
- Date: 6 Feb 96 07:19:20 -0800
- References: <1996Feb4.140550.4699@wisipc.weizmann.ac.il>
- Message-ID: <00001a81+00009b5a@msn.com>
- Path: news.msn.com!msn.com
- Newsgroups: comp.lang.c++
- Organization: The Microsoft Network (msn.com)
-
- I think there is a confusion of heap space and stack space.
- Heap space is dynamically allocated memory like that from new while
- stack space are assigned by the compiler ... the return parameter and
- function parameters are in the stack space ...
-
- hope this help ...
-